NEWS and version bump for 2.0.1 release, to come out shortly
authorSteven G. Johnson <stevenj@mit.edu>
Wed, 13 Jul 2016 16:39:05 +0000 (12:39 -0400)
committerSteven G. Johnson <stevenj@mit.edu>
Wed, 13 Jul 2016 16:39:05 +0000 (12:39 -0400)
CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index ff0c819a3c302a2656fbefa94e1717395b5b7886..8958bcd2cbbea88b0ed12fac0257a7d24fb643a8 100644 (file)
@@ -9,7 +9,7 @@ project (utf8proc C)
 # Be sure to also update these in Makefile!
 set(SO_MAJOR 2)
 set(SO_MINOR 0)
-set(SO_PATCH 0)
+set(SO_PATCH 1)
 
 add_definitions (
   -DUTF8PROC_EXPORTS
index f79d541d9da4fd52e6af209fc15b8d6c8af950d1..0be40e0c80c39ad92be575958b9db92440124e9c 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,6 +2,6 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.2.0.0
-lib/libutf8proc.so.2 -> libutf8proc.so.2.0.0
-lib/libutf8proc.so.2.0.0
+lib/libutf8proc.so -> libutf8proc.so.2.0.1
+lib/libutf8proc.so.2 -> libutf8proc.so.2.0.1
+lib/libutf8proc.so.2.0.1
index ff5e77142b9c25b8afb3dc15f6bba5a0dea9fac8..117974809d32801ff1b3d3beb6740ec91a4511f3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
 # Be sure to also update these in MANIFEST and CMakeLists.txt!
 MAJOR=2
 MINOR=0
-PATCH=0
+PATCH=1
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
diff --git a/NEWS.md b/NEWS.md
index d39d85a7c1ac96e2ac40c44b1c4d567231b48cca..49d94e7611bf0ff5d18c9df083b36519430ea1f4 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,11 @@
 # utf8proc release history #
 
+## Version 2.0.1 ##
+
+2016-07-13:
+
+- Bug fix in `utf8proc_grapheme_break_stateful` ([#77]).
+
 ## Version 2.0 ##
 
 2016-07-13:
@@ -254,3 +260,4 @@ Release of version 1.0.1
 [#66]: https://github.com/JuliaLang/utf8proc/issues/66
 [#68]: https://github.com/JuliaLang/utf8proc/issues/68
 [#70]: https://github.com/JuliaLang/utf8proc/issues/70
+[#77]: https://github.com/JuliaLang/utf8proc/issues/77
index af4c81d215d2ee975149cbe2640b20eeeecd95c1..42ab25d34f8685c436cc5e8518a9f038146d6c73 100644 (file)
@@ -72,7 +72,7 @@
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
 #define UTF8PROC_VERSION_MINOR 0
 /** The PATCH version (increased for fixes that do not change the API). */
-#define UTF8PROC_VERSION_PATCH 0
+#define UTF8PROC_VERSION_PATCH 1
 /** @} */
 
 #include <stdlib.h>